func encoding/asn1.appendTwoDigits

10 uses

	encoding/asn1 (current package)
		marshal.go#L351: func appendTwoDigits(dst []byte, v int) []byte {
		marshal.go#L395: 		dst = appendTwoDigits(dst, year-1900)
		marshal.go#L397: 		dst = appendTwoDigits(dst, year-2000)
		marshal.go#L419: 	dst = appendTwoDigits(dst, int(month))
		marshal.go#L420: 	dst = appendTwoDigits(dst, day)
		marshal.go#L424: 	dst = appendTwoDigits(dst, hour)
		marshal.go#L425: 	dst = appendTwoDigits(dst, min)
		marshal.go#L426: 	dst = appendTwoDigits(dst, sec)
		marshal.go#L444: 	dst = appendTwoDigits(dst, offsetMinutes/60)
		marshal.go#L445: 	dst = appendTwoDigits(dst, offsetMinutes%60)